Conditions | 1 |
Total Lines | 9 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
12 | |||
13 | /** |
||
14 | * Get details for specified company |
||
15 | * @param { number } companyID |
||
16 | * @returns { Promise<CompanyDetailsResponse> } |
||
17 | * @see https://developers.themoviedb.org/3/companies/get-company-details |
||
18 | */ |
||
19 | public async details(companyID: number): Promise<CompanyDetailsResponse> { |
||
20 | return this.sendGetRequest(`company/${companyID}`); |
||
21 | } |
||
44 |